1 namespace PhoneDirectory
2 {
3     
partial class Form1
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 =
new System.Windows.Forms.DataGridViewCellStyle();
32             System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(Form1));
33             
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
34             
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
35             
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
36             
this.dataGridView1 = new System.Windows.Forms.DataGridView();
37             
this.textBox1 = new System.Windows.Forms.TextBox();
38             
this.label2 = new System.Windows.Forms.Label();
39             
this.button1 = new System.Windows.Forms.Button();
40             
this.comboBox1 = new System.Windows.Forms.ComboBox();
41             
this.menuStrip1.SuspendLayout();
42             ((System.ComponentModel.ISupportInitialize)(
this.dataGridView1)).BeginInit();
43             
this.SuspendLayout();
44             
//
45             
// menuStrip1
46             
//
47             
this.menuStrip1.BackColor = System.Drawing.Color.Transparent;
48             
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
49             
this.toolStripMenuItem3,
50             
this.toolStripMenuItem1});
51             
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
52             
this.menuStrip1.Name = "menuStrip1";
53             
this.menuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
54             
this.menuStrip1.Size = new System.Drawing.Size(942, 24);
55             
this.menuStrip1.TabIndex = 6;
56             
this.menuStrip1.Text = "menuStrip1";
57             
//
58             
// toolStripMenuItem3
59             
//
60             
this.toolStripMenuItem3.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
61             
this.toolStripMenuItem3.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
62             
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
63             
this.toolStripMenuItem3.Size = new System.Drawing.Size(89, 20);
64             
this.toolStripMenuItem3.Text = "Add Account";
65             
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
66             
//
67             
// toolStripMenuItem1
68             
//
69             
this.toolStripMenuItem1.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
70             
this.toolStripMenuItem1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
71             
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
72             
this.toolStripMenuItem1.Size = new System.Drawing.Size(78, 20);
73             
this.toolStripMenuItem1.Text = "Developers";
74             
this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click_1);
75             
//
76             
// dataGridView1
77             
//
78             
this.dataGridView1.AllowUserToAddRows = false;
79             
this.dataGridView1.AllowUserToDeleteRows = false;
80             
this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders;
81             
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
82             
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Top;
83             
this.dataGridView1.Location = new System.Drawing.Point(0, 24);
84             
this.dataGridView1.Name = "dataGridView1";
85             
this.dataGridView1.ReadOnly = true;
86             dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
87             dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
88             dataGridViewCellStyle1.Font =
new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
89             dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
90             dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
91             dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
92             dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
93             
this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle1;
94             
this.dataGridView1.Size = new System.Drawing.Size(942, 362);
95             
this.dataGridView1.TabIndex = 7;
96             
this.dataGridView1.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellValidated);
97             
this.dataGridView1.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridView1_CellFormatting);
98             
this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
99             
//
100             
// textBox1
101             
//
102             
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
103             
this.textBox1.ForeColor = System.Drawing.SystemColors.ScrollBar;
104             
this.textBox1.Location = new System.Drawing.Point(65, 394);
105             
this.textBox1.Name = "textBox1";
106             
this.textBox1.Size = new System.Drawing.Size(312, 20);
107             
this.textBox1.TabIndex = 9;
108             
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged_1);
109             
//
110             
// label2
111             
//
112             
this.label2.AutoSize = true;
113             
this.label2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
114             
this.label2.ForeColor = System.Drawing.SystemColors.ButtonFace;
115             
this.label2.Location = new System.Drawing.Point(14, 400);
116             
this.label2.Name = "label2";
117             
this.label2.Size = new System.Drawing.Size(47, 13);
118             
this.label2.TabIndex = 8;
119             
this.label2.Text = "Search :";
120             
//
121             
// button1
122             
//
123             
this.button1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
124             
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
125             
this.button1.Location = new System.Drawing.Point(855, 392);
126             
this.button1.Name = "button1";
127             
this.button1.Size = new System.Drawing.Size(75, 23);
128             
this.button1.TabIndex = 12;
129             
this.button1.Text = "Refresh";
130             
this.button1.UseVisualStyleBackColor = true;
131             
this.button1.Click += new System.EventHandler(this.button1_Click);
132             
//
133             
// comboBox1
134             
//
135             
this.comboBox1.FormattingEnabled = true;
136             
this.comboBox1.Location = new System.Drawing.Point(604, 436);
137             
this.comboBox1.Name = "comboBox1";
138             
this.comboBox1.Size = new System.Drawing.Size(121, 21);
139             
this.comboBox1.TabIndex = 13;
140             
//
141             
// Form1
142             
//
143             
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
144             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
145             
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
146             
this.ClientSize = new System.Drawing.Size(942, 422);
147             
this.Controls.Add(this.comboBox1);
148             
this.Controls.Add(this.button1);
149             
this.Controls.Add(this.textBox1);
150             
this.Controls.Add(this.label2);
151             
this.Controls.Add(this.dataGridView1);
152             
this.Controls.Add(this.menuStrip1);
153             
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
154             
this.MaximizeBox = false;
155             
this.Name = "Form1";
156             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
157             
this.Text = "Digital Phone Directory";
158             
this.Load += new System.EventHandler(this.Form1_Load);
159             
this.menuStrip1.ResumeLayout(false);
160             
this.menuStrip1.PerformLayout();
161             ((System.ComponentModel.ISupportInitialize)(
this.dataGridView1)).EndInit();
162             
this.ResumeLayout(false);
163             
this.PerformLayout();
164
165         }
166
167         
#endregion
168
169         
private System.Windows.Forms.MenuStrip menuStrip1;
170         
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
171         
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
172         
private System.Windows.Forms.DataGridView dataGridView1;
173         
private System.Windows.Forms.TextBox textBox1;
174         
private System.Windows.Forms.Label label2;
175         
private System.Windows.Forms.Button button1;
176         
private System.Windows.Forms.ComboBox comboBox1;
177     }
178 }


Gõ tìm kiếm nhanh...